From: Kenichi Handa Date: Tue, 2 Aug 2011 03:49:09 +0000 (+0900) Subject: Make uniprop_table non-static. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~324^2~2669^2~1 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=8d3f991486310c8100b81884bbe447de3980c8c9;p=emacs.git Make uniprop_table non-static. --- diff --git a/src/ChangeLog b/src/ChangeLog index fefb8c0729d..5822671ffaf 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,9 @@ +2011-08-02 Kenichi Handa + + * lisp.h: (uniprop_table): Extern it. + + * chartab.c (uniprop_table): Make it non-static. + 2011-08-01 Eli Zaretskii * xdisp.c (forward_to_next_line_start): Accept additional argument diff --git a/src/chartab.c b/src/chartab.c index efe23eca83f..fb72004356e 100644 --- a/src/chartab.c +++ b/src/chartab.c @@ -1310,7 +1310,7 @@ uniprop_get_encoder (Lisp_Object table) function may load a Lisp file and thus may cause garbage-collection. */ -static Lisp_Object +Lisp_Object uniprop_table (Lisp_Object prop) { Lisp_Object val, table, result; diff --git a/src/lisp.h b/src/lisp.h index 1e141dbb5d0..d82307b4332 100644 --- a/src/lisp.h +++ b/src/lisp.h @@ -2861,6 +2861,7 @@ extern void map_char_table_for_charset (void (*c_function) (Lisp_Object, Lisp_Ob Lisp_Object, Lisp_Object, Lisp_Object, struct charset *, unsigned, unsigned); +extern Lisp_Object uniprop_table (Lisp_Object); extern void syms_of_chartab (void); /* Defined in print.c */